home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 13 / CU Amiga Magazine's Super CD-ROM 13 (1997)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1997-08].iso / CUCD / Graphics / WildFire / WildFireFPU / scripts.doc < prev    next >
Text File  |  1997-05-18  |  3KB  |  88 lines

  1. Short Documentation for the wf_scripts_1.lha
  2.  
  3. 1. Load the file wf:sessions/TwirlAway.session inside the converter. The
  4. process-file is loaded automaticly.
  5.  
  6. Here is the way the first example-script was created:
  7.  
  8. As Input there is black frames selected, beacause we load the pictures
  9. inside the processor. We choose 30 frames for the input. As output we use
  10. yafa-animation. As options we use Chunky frames (for better compression),
  11. XPK-compression and timecodes.
  12.  
  13. We turn on the processor and the preview.
  14.  
  15. Now we go inside the processor.
  16.  
  17. (Turn folding to disabled to see the entries)
  18.  
  19. First of all we load the two images we want to fade.
  20.  
  21. `LOADIMAGE (out=TEMP1, seq='wf:Trash/face1HALVE', loop=1, shift=0)`
  22.  
  23. Output to buffer Temp1. This buffer will NOT be deleted while creating the
  24. animation. So we tell the processor that this effect will only be executed
  25. at the first frame of the animation.
  26.  
  27. `LOADIMAGE (out=TEMP2, seq='wf:Trash/face2HALVE', loop=1, shift=0)`
  28.  
  29. Output to buffer Temp2. This buffer will NOT be deleted while creating the
  30. animation. So we tell the processor that this effect will only be executed
  31. at the first frame of the animation.
  32.  
  33. Now we add a twirl-effect.
  34.  
  35. `TWIRL (in=TEMP1, out=TEMP3, centreX=80, centreY=64, fallOff=out, ...`
  36.  
  37. The picture inside the buffer 1 will be twirled and saved into buffer 3.
  38. To get the centre of the picture we go inside the single-picture-process
  39. and choose as input the picture wf:trash/face1HALVE and press Apply
  40. Dimensions.  As amount we will choose later on a variable called
  41. `twirlamount`.
  42.  
  43. The background picture inside buffer 2 will be shifted and saved into
  44. buffer 4. The variables will be created lateron. With the shift value we
  45. select the amount the picture will be shifted into one direction. The
  46. jitter-amount as the maximum shifting in random directions for every line.
  47. This effect is used after the shifting.
  48.  
  49. `SHIFTLINES (in=TEMP2, out=TEMP4, shift=shift, jitter=normal, ...`
  50.  
  51. Now we compose the two pictures. We use buffer 4 as background and buffer 3
  52. as foreground.
  53.  
  54.  
  55. As variables we use:
  56.  
  57. Mix:  The X-Value is the frame-Number, The Y-Value is the value at the
  58. current frame. We start with 100 and end with 0. 100 means that you can`t
  59. look through the foreground. 0 means that you dont see the foreground, only
  60. the background...
  61.  
  62. Shift: This is the shift amount for SHIFTLINES effect. We start with a high
  63. Value and end with 0. That means that the picture comes from the right side
  64. and end with an offset of 0 pixels (means at the left side of the screen)
  65.  
  66. Jitter: This is the maximum amount for the jitter-shifting.
  67.  
  68. Jitterprob: This is the probability for the jitter-effect.
  69.  
  70. Twirlamount: This is the amount for the twirl-effect of the foreground
  71. picture.
  72.  
  73. Aftre the creation of the variables/envelopes we select them inside the
  74. effects.
  75.  
  76. Now we can start the converter.
  77.  
  78. Take a look at the other two scripts, too.
  79.  
  80. The wf_cube_fade.lha may only be executed if you have the Powerplug!
  81. registration, as twmp3d buffers are used!
  82. They will be loaded without Powerplugs!, too but the results does not look
  83. like it should (see example animation on aminet.)
  84.  
  85. If you have any questions don`t hesitate to contact me at:
  86.  
  87. eksec@eure.de
  88.